home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / libs / libelf-0.5 / libelf-0 / libelf-0.5.2 / support / Makefile.in < prev   
Encoding:
Makefile  |  1995-10-21  |  1.7 KB  |  58 lines

  1. # support/Makefile for libelf.
  2. # Copyright (C) 1995 Michael Riepe <riepe@ifwsn4.ifw.uni-hannover.de>
  3. # This library is free software; you can redistribute it and/or
  4. # modify it under the terms of the GNU Library General Public
  5. # License as published by the Free Software Foundation; either
  6. # version 2 of the License, or (at your option) any later version.
  7. # This library is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10. # Library General Public License for more details.
  11. # You should have received a copy of the GNU Library General Public
  12. # License along with this library; if not, write to the Free Software
  13. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14.  
  15. # no user serviceable parts below
  16.  
  17. PACKAGE = @PACKAGE@
  18. VERSION = @VERSION@
  19.  
  20. SHELL = /bin/sh
  21. @SET_MAKE@
  22.  
  23. srcdir = @srcdir@
  24. top_srcdir = @top_srcdir@
  25. VPATH = @srcdir@
  26.  
  27. topdir = ..
  28. subdir = support
  29.  
  30. .SUFFIXES:
  31.  
  32. DISTFILES = Makefile.in elf.h
  33.  
  34. all check install uninstall mostlyclean clean:
  35. maintainer-clean: distclean
  36. distclean:
  37.     rm -f Makefile
  38.  
  39. distdir = $(topdir)/$(PACKAGE)-$(VERSION)/$(subdir)
  40. dist: $(DISTFILES)
  41.     for file in $(DISTFILES); do \
  42.       ln $(srcdir)/$$file $(distdir) || \
  43.         cp -p $(srcdir)/$$file $(distdir) || exit 1; \
  44.     done
  45.  
  46. # For the justification of the following Makefile rules, see node
  47. # `Automatic Remaking' in GNU Autoconf documentation.
  48.  
  49. Makefile: Makefile.in $(topdir)/config.status
  50.     cd $(topdir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  51.  
  52. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  53. # Otherwise a system limit (for SysV at least) may be exceeded.
  54. .NOEXPORT:
  55.